Add a css parser test for border-spacing
authorMatthias Clasen <mclasen@redhat.com>
Sun, 11 Dec 2016 01:41:07 +0000 (20:41 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 11 Dec 2016 01:41:07 +0000 (20:41 -0500)
testsuite/css/parser/border-spacing.css [new file with mode: 0644]
testsuite/css/parser/border-spacing.ref.css [new file with mode: 0644]

diff --git a/testsuite/css/parser/border-spacing.css b/testsuite/css/parser/border-spacing.css
new file mode 100644 (file)
index 0000000..f280021
--- /dev/null
@@ -0,0 +1,15 @@
+a {
+  border-spacing: 0;
+}
+
+b {
+  border-spacing: 10px;
+}
+
+c {
+  border-spacing: 10em;
+}
+
+d {
+  border-spacing: 1px 2em;
+}
diff --git a/testsuite/css/parser/border-spacing.ref.css b/testsuite/css/parser/border-spacing.ref.css
new file mode 100644 (file)
index 0000000..da4287e
--- /dev/null
@@ -0,0 +1,15 @@
+a {
+  border-spacing: 0 0;
+}
+
+b {
+  border-spacing: 10px 10px;
+}
+
+c {
+  border-spacing: 10em 10em;
+}
+
+d {
+  border-spacing: 1px 2em;
+}